TypeScript 98.3%
CSS 0.9%
Shell 0.7%
1// Carte interactive des concepts du cours (graphe SVG maison).2import { Suspense } from "react";3import { ConceptMap } from "@/components/learning/concept-map";45export const metadata = { title: "Concepts" };67export default async function ConceptsPage({ params }: { params: Promise<{ course: string }> }) {8 const { course } = await params;9 return (10 <Suspense>11 <ConceptMap course={course.toLowerCase()} />12 </Suspense>13 );14}15